Pure functional languages - определение. Что такое Pure functional languages
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое Pure functional languages - определение

PROGRAMMING PARADIGM
Functional programming language; Functional language; Functional program; Functional (programming); Functional languages; Functional programming languages; Functional Programming; Functionalprogramming; Functional computing language; Enigmatic programming; Functional Language; Functional paradigm; Comparison of imperative programming and functional programming; History of functional programming; Type systems in functional programming languages
Найдено результатов: 3061
pure functional language         
PROGRAMMING PARADIGM THAT TREATS ALL COMPUTATION AS THE EVALUATION OF MATHEMATICAL FUNCTIONS
Pure functional language; Functional purity; Purely functional language; Purely functional programming language; Pure functional programming; Pure functional
purely functional language         
PROGRAMMING PARADIGM THAT TREATS ALL COMPUTATION AS THE EVALUATION OF MATHEMATICAL FUNCTIONS
Pure functional language; Functional purity; Purely functional language; Purely functional programming language; Pure functional programming; Pure functional
<language> A language that supports only {functional programming} and does not allow functions to have side-effects. Program execution consists of evaluation of an expression and all subexpressions are {referentially transparent}. (2003-03-25)
Purely functional programming         
PROGRAMMING PARADIGM THAT TREATS ALL COMPUTATION AS THE EVALUATION OF MATHEMATICAL FUNCTIONS
Pure functional language; Functional purity; Purely functional language; Purely functional programming language; Pure functional programming; Pure functional
In computer science, purely functional programming usually designates a programming paradigm—a style of building the structure and elements of computer programs—that treats all computation as the evaluation of mathematical functions.
Functional beverage         
NON-ALCOHOLIC DRINK THAT CONTAINS HERBS, VITAMINS, MINERALS, AMINO ACIDS OR ADDITIONAL RAW FRUIT OR VEGETABLES
Bepherages; Functional beverages; Functional drinks; Functional drink
A functional beverage is a conventional liquid food marketed to highlight specific product ingredients or supposed health benefit.
Pure Oil         
  • station in Monroe, Wisconsin]], built in 1935.
  • Postcard showing a Pure Oil station and a lunch counter, ca. 1930-1945.
U.S. BRAND OF FUEL RETAILERS OWNED BY PURE OIL JOBBERS COOPERATIVE, INC.
Pure Oil Company; Ohio Cities Gas Company
Pure Oil Company was an American petroleum company founded in 1914 and sold to what is now Union Oil Company of California in 1965. The Pure Oil name returned in 1993 as a cooperative (based in Rock Hill, South Carolina since 2008) which has grown to supply 350 members in 10 Southern states.
Functional training         
A CLASSIFICATION OF EXERCISE WHICH INVOLVES TRAINING THE BODY FOR THE ACTIVITIES PERFORMED IN DAILY LIFE
Functional strength
Functional training is a classification of exercise which involves training the body for the activities performed in daily life.
functional testing         
TESTING OF A SOFTWARE APPLICATION FOR ITS FUNCTIONAL REQUIREMENTS
Functional test; Functional Testing; Functional tests
<testing> (Or "black-box testing", "closed-box testing") The application of test data derived from the specified functional requirements without regard to the final program structure. (1996-05-15)
Comparison of functional programming languages         
WIKIMEDIA LIST ARTICLE
User:Rellermeyer/sandbox; Wikipedia talk:Articles for creation/Comparison of Functional Programming Languages; Comparison of Functional Programming Languages
The table shows a comparison of functional programming languages which compares various features and designs of different functional programming languages.
Pure spinor         
SPINOR ANNIHILATED BY A MAXIMAL ISOTROPIC SUBSPACE OF GAMMA MATRICES
Projective pure spinor; Simple spinor
In the domain of mathematics known as representation theory, pure spinors (or simple spinors) are spinors that are annihilated under the Clifford action by a maximal isotropic subspace of the space
Functional linguistics         
  • 490x490px
APPROACHES TO THE STUDY OF LANGUAGE THAT SEE FUNCTIONALITY OF LANGUAGE AND ITS ELEMENTS TO BE THE KEY TO UNDERSTANDING LINGUISTIC PROCESSES AND STRUCTURES
Functionalism (linguistics); Functionalist linguistics; Linguistic functionalism; Function (language); Functionalist theories of grammar; Functional theory; Functional and structural theory; Functional theories of grammar; Functional analysis (linguistics); History of functional linguistics
Functional linguistics is an approach to the study of language characterized by taking systematically into account the speaker's and the hearer's side, and the communicative needs of the speaker and of the given language community. Linguistic functionalism spawned in the 1920s to 1930s from Ferdinand de Saussure's systematic structuralist approach to language (1916).

Википедия

Functional programming

In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions. It is a declarative programming paradigm in which function definitions are trees of expressions that map values to other values, rather than a sequence of imperative statements which update the running state of the program.

In functional programming, functions are treated as first-class citizens, meaning that they can be bound to names (including local identifiers), passed as arguments, and returned from other functions, just as any other data type can. This allows programs to be written in a declarative and composable style, where small functions are combined in a modular manner.

Functional programming is sometimes treated as synonymous with purely functional programming, a subset of functional programming which treats all functions as deterministic mathematical functions, or pure functions. When a pure function is called with some given arguments, it will always return the same result, and cannot be affected by any mutable state or other side effects. This is in contrast with impure procedures, common in imperative programming, which can have side effects (such as modifying the program's state or taking input from a user). Proponents of purely functional programming claim that by restricting side effects, programs can have fewer bugs, be easier to debug and test, and be more suited to formal verification.

Functional programming has its roots in academia, evolving from the lambda calculus, a formal system of computation based only on functions. Functional programming has historically been less popular than imperative programming, but many functional languages are seeing use today in industry and education, including Common Lisp, Scheme, Clojure, Wolfram Language, Racket, Erlang, Elixir, OCaml, Haskell, and F#. Functional programming is also key to some languages that have found success in specific domains, like JavaScript in the Web, R in statistics, J, K and Q in financial analysis, and XQuery/XSLT for XML. Domain-specific declarative languages like SQL and Lex/Yacc use some elements of functional programming, such as not allowing mutable values. In addition, many other programming languages support programming in a functional style or have implemented features from functional programming, such as C++11, C#, Kotlin, Perl, PHP, Python, Go, Rust, Raku, Scala, and Java (since Java 8).